home *** CD-ROM | disk | FTP | other *** search
/ The Game Master (3rd Edition) / The Game Master 3rd edition.iso / files / gamerman / fsbkniff / hinstall.bat < prev    next >
Encoding:
DOS Batch File  |  1992-08-11  |  530 b   |  27 lines

  1. @echo off
  2. echo KNIFFEL-Installationsprogram
  3. if ~%1~==~~ goto noparam
  4. if ~%2~==~~ goto noparam
  5.  
  6. if not exist %1kniffel.exe goto wrongdisk
  7. if not exist %1cga.dat goto wrongdisk
  8. if not exist %1ega.dat goto wrongdisk
  9.  
  10. md %2 >NUL
  11. copy %1*.* %2 >NUL
  12. cd %2
  13. echo KNIFFEL erfolgreich installiert
  14. type liesmich.txt | more
  15. goto end
  16.  
  17. :noparam
  18. echo Aufruf mit
  19. echo HINSTALL Quellaufwerk Zielpfad
  20. echo z.B. HINSTALL A: C:\KNIFFEL
  21. goto end
  22.  
  23. :wrongdisk
  24. echo Laufwerk %1 enthält nicht die KNIFFEL-Diskette!
  25. goto end
  26.  
  27. :end